0

We are using WSO2 DAS. We defined table(in-memory table) by siddhi, and we want to use DAS REST API to search this table's record, we use

curl -k -XGET 'https://localhost:9443/analytics/table_exists?table=table1' -H "Authorization: Basic YWRtaW46YWRtaW4="

but the response is that the table does not exist.

How we can search the in-memory table records?

Community
  • 1
  • 1
yeahliu
  • 154
  • 1
  • 8

1 Answers1

1

Siddhi in memory tables cannot be accessed by DAS REST API, so you have to persist content in the memory to a persistant stream which will store in a event table.

Tharik Kanaka
  • 2,490
  • 6
  • 31
  • 54