We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Note: This is a quick experimental POC and NOT for production use
We add a new vstream command in vtgate that uses the VStream API to stream data from a table.
To try it out:
mysql -u root --host=127.0.0.1 -P 15306 --quick
mysql> set workload=olap; Query OK, 0 rows affected (0.00 sec) mysql> vstream * from product \G *************************** 1. row *************************** op: + sku: SKU-1001 description: Monitor price: 100 *************************** 2. row *************************** op: + sku: SKU-1002 description: Keyboard price: 30 /* In another mysql client run "update product set price=200 where sku = 'SKU-1001';", gives: */ *************************** 3. row *************************** op: * sku: SKU-1001 description: Monitor price: 200 /* In another mysql client run "delete from product where sku = 'SKU-1001';", gives: */ *************************** 4. row *************************** op: - sku: SKU-1001 description: Monitor price: 200
Notes
The text was updated successfully, but these errors were encountered:
The functionality detailed above has been implemented in #6670.
Sorry, something went wrong.
No branches or pull requests
Note: This is a quick experimental POC and NOT for production use
We add a new vstream command in vtgate that uses the VStream API to stream data
from a table.
To try it out:
mysql -u root --host=127.0.0.1 -P 15306 --quick
Notes
The text was updated successfully, but these errors were encountered: