Replies: 1 comment 4 replies
|
Scan table is a logical concept like the stream. Unlike lookup table, define a scan table does not have a physical "store" and you cannot query it. Like stream, scan table must be used in a rule to let it run. Please check https://ekuiper.org/docs/en/latest/guide/tables/scan.html#enrich-data |
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
Hello,
Is it possible to send stream data to a scan table to hold data? I see in the documentation, "Users can use table to retain a batch of data for processing". If so where/how would I access this data.
My attempt has been to to create a scan table with the following:
Table name: Testing
datasource: topic1
format: json
type: mqtt
kind: scan
Where would I access this table "Testing"?
If I publish a payload to topic1, Would this result in the table "Testing" containing this data?
All reactions