Details
-
Bug
-
Status: Resolved
-
Normal
-
Resolution: Invalid
-
None
-
Normal
Description
I have my system with a table design,
Create Table lamscope_dashboard.events (
ToolId text,
Date timestamp,
End_Time timestamp,
DeviceId text,
Logtype text,
EventId text,
MaterialId text,
CfgId text,
MaterialType text,
Status text,
SlotNo text,
LotId text,
RecipeId text,
StepNum int ,
Fromdevice text,
Fromslot text,
ToDevice text,
ToSlot int ,
FlowRecipeId text,
Flowinfo text,
CarrierId text,
JobId text,
Data text,
PRIMARY KEY( ToolId, Date, MaterialId, DeviceId, EventId))
WITH CLUSTERING ORDER BY (Date ASC,MaterialId ASC, DeviceId ASC)
AND COMPRESSION =
;
Query
select * from events where eventid='xxxxx' allow filtering;
It is a single instance cluster.
System is not responding back in 12000 ms.
Query goes timeout.