-
Notifications
You must be signed in to change notification settings - Fork 0
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: elgopher/batch
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.2.1
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: elgopher/batch
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
1
contributor
Commits on May 4, 2022
-
Client code executing Processor.Run might want to abort running operation if the operation was not yet run in a batch. Such situation is possible when there is a high request congestion. From now on Processor.Run will accept new parameter context.Context. This context could be cancelled by the client effectively dropping the operation if it was still waiting to be run. Example: ``` ctx := context.WithTimeout(context.Background(), 5 * time.Second) err := processor.Run(ctx, "key", ...) // err will be OperationCancelled ```
Configuration menu - View commit details
-
Copy full SHA for 870ccfc - Browse repository at this point
Copy the full SHA 870ccfcView commit details
Commits on May 5, 2022
-
Current implementation is not optimal. It is using fixed-size go-routines pool. If the pool specified by the user is too small, one slow resource could block processing of other resources (different keys, but same hash). User can adjust the pool size, but it is very hard to figure out this number upfront (before running the app on production). The new implementation spawn a dedicated go-routine for each new batch. At max one go-routine is created for given resource key. Go-routine is destroyed once batch ends.
Configuration menu - View commit details
-
Copy full SHA for a90382b - Browse repository at this point
Copy the full SHA a90382bView commit details
Commits on May 6, 2022
-
Configuration menu - View commit details
-
Copy full SHA for aff6c4d - Browse repository at this point
Copy the full SHA aff6c4dView commit details -
Configuration menu - View commit details
-
Copy full SHA for e7fb6a9 - Browse repository at this point
Copy the full SHA e7fb6a9View commit details -
Update Processor.Run documentation
Add information about always leaving resource in a consistent state.
Configuration menu - View commit details
-
Copy full SHA for 8569438 - Browse repository at this point
Copy the full SHA 8569438View commit details -
[example] Do not log errors when operation was cancelled
In case when HTTP connection was closed and the operation was still waiting to be run. Then OperationCancelled error is returned by processor.Run.
Configuration menu - View commit details
-
Copy full SHA for bc57aa9 - Browse repository at this point
Copy the full SHA bc57aa9View commit details -
Configuration menu - View commit details
-
Copy full SHA for a4430a1 - Browse repository at this point
Copy the full SHA a4430a1View commit details
Commits on May 7, 2022
-
Configuration menu - View commit details
-
Copy full SHA for a17ed95 - Browse repository at this point
Copy the full SHA a17ed95View commit details -
Reuse context.Context for the entire batch
This is needed to support database transactions. After LoadResource succeeded the context cannot be canceled, because in the database driver there might be a running go-routine dedicated for transaction which will automatically roll back the transaction once context is canceled.
Configuration menu - View commit details
-
Copy full SHA for 166b653 - Browse repository at this point
Copy the full SHA 166b653View commit details -
Configuration menu - View commit details
-
Copy full SHA for dafdb21 - Browse repository at this point
Copy the full SHA dafdb21View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0261d1f - Browse repository at this point
Copy the full SHA 0261d1fView commit details
Commits on May 8, 2022
-
Configuration menu - View commit details
-
Copy full SHA for ff85cd0 - Browse repository at this point
Copy the full SHA ff85cd0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 879350a - Browse repository at this point
Copy the full SHA 879350aView commit details -
[example] Add another validation
Validate if person already booked a different seat in the train. This validation require some CPU time (for loop 30 iterations), which makes example closer to a real-world web app.
Configuration menu - View commit details
-
Copy full SHA for 398a242 - Browse repository at this point
Copy the full SHA 398a242View commit details
Commits on May 12, 2022
-
Processor.Run actively polls for temporary batch channel every 10 millisecond and this could eat too much CPU resources. Instead, Run method could wait until temporary batch channel is closed.
Configuration menu - View commit details
-
Copy full SHA for 0dfaa34 - Browse repository at this point
Copy the full SHA 0dfaa34View commit details
Commits on May 16, 2022
-
Provide measurements for each executed batch. This can be used to monitor running Processor and publish metrics to external systems (such as Prometheus, M3).
Configuration menu - View commit details
-
Copy full SHA for e942404 - Browse repository at this point
Copy the full SHA e942404View commit details -
Add more context to error returned by Run
Add information what was the cause of the error.
Configuration menu - View commit details
-
Copy full SHA for c9abb18 - Browse repository at this point
Copy the full SHA c9abb18View commit details
Commits on May 22, 2022
-
Move example to separate Github repo
Move example to github.com/elgopher/batch-example repo . This work is needed because in the example I plan to use real database, Docker etc. Adding such dependencies to batch repo would create a lot of noise which I want to avoid.
Configuration menu - View commit details
-
Copy full SHA for 600c019 - Browse repository at this point
Copy the full SHA 600c019View commit details -
Configuration menu - View commit details
-
Copy full SHA for 560fcc1 - Browse repository at this point
Copy the full SHA 560fcc1View commit details
Commits on May 28, 2022
-
[README] Remove information about using pessimistic lock
Pessimistic locks are bad for high-throughput systems, because they require transactions, which in turn occupy database connections which have a great cost. Pessimistic locks are especially bad when using batch processing, because batch operations takes significant amount of time (hundreds of millis).
Configuration menu - View commit details
-
Copy full SHA for 055f212 - Browse repository at this point
Copy the full SHA 055f212View commit details -
Configuration menu - View commit details
-
Copy full SHA for c48a04e - Browse repository at this point
Copy the full SHA c48a04eView commit details
Commits on Aug 30, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 42bdc39 - Browse repository at this point
Copy the full SHA 42bdc39View commit details
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.