Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

A main requirement of DAS is to support arbitrary key value pairs. Most of the RDBMS have a fixed schema and does not support storing arbitrary key values. In DAS, records are stored as blobs. In that way, the data fields in a record can be converted to a blob and store them along with the record id and the timestamp of the record. Storing data as blobs has one drawback. That is database level indexing cannot be used for blobs to search by fields. To overcome this issue, before the records are persisted in DAS, records are sent through the Indexer, so indexer can keep a searchable copy of record data along with the record id. This indexer does not store the field values, it only stores the record id. It only keep an index of data fields. When a search query is sent to DAS, indexer will look for the matching records, get their record ids, send them to the persistence layer/recordstore. In recordstore level, the record blobs are deserialized and return as the record objects from AnalyticsDataService implementation.

Indexing Architecture

DAS indexer is implemented using Apache lucene which is a full text search library. Users can index records and then later can search records using lucene queries. Events received by DAS are converted to a list of “Record” objects and then they are inserted to FileSystem Based Queues. (This queue is created in {DAS_HOME}/repository/data/index_staging_queues). With a background thread, these queues are consumed and records are indexed. (Indexed data is stored in {DAS_HOME}/repository/data/index_data. DAS index consists of smaller indexes called shards. At a time a shard can be accessed by only one Index writer. So having multiple shards can increase the write throughput (Can be limited by Disk IO operations). By default, DAS is configured to have 6 shards and 1 replica (number of replicas come into play if DAS is clustered.

...

By default, DAS is configured to have 6 shards and 1 replica for each shard(shards and replicas, altogether 12 shards). So in Min-HA setup (two node cluster), each DAS server will contain 3 shards and replicas of the other 3 shards. This is communicated between the nodes through Hazelcast messages. Even if one server goes down, second server will have the replicas of the 3 shards which were in the node that went down, so HA is preserved. For example,  If there are 3 DAS nodes in the cluster, all 12 shards (shards + replicas) will be split among the 3 nodes where each node will have 4 shards (2 shards +  any 2 replicas from other 4 shards). 

Debugging Indexing in a cluster

If someone thinks there is an issue with indexing, first thing to do is, check the local-shard-allocation.config.conf and see if the shards are allocated properly. The number of shards and the number of replicas are mentioned in analytics-config.xml.

...

  1. Keep backup of the current my-node-id.dat of both nodes.

  2. Extract the node ids mentioned in the log line mentioned above. This may contain more than 2 ids.

  3. Separate out the ids which do not match with the my-node-id.dat of both nodes.

  4. Shutdown both nodes.
  5. Get one of the non-matching/unnecessary/additional node ids and replace the my-node-id.dat of any DAS node. (make sure you keep a backup of the my-node-id.dat before doing this) 
  6. Start the DAS node mentioned in step 5 with property “-DdisableIndexing=true”. This command will remove the node id that we put in my-node-id.dat from the indexing cluster.

  7. Repeat the steps 4, 5, and 6 for all the additional node ids.

  8. Finally, restore the two node ids (restore the my-node-id.dat files that you backed up).

  9. Clean the repository/data folder

  10. Go to local-shard-allocation.config.conf and replace the content with following.
    0, INIT
    1, INIT
    2, INIT
    3, INIT
    4, INIT
    5, INIT

  11. Do the above for both nodes and start. You will see that the local-shard-allocation-config.conf content is changed to

    0, NORMAL
    1, NORMAL
    2, NORMAL
    3, NORMAL
    4, NORMAL
    5, NORMAL

    Note that the above configuration is valid a DAS configured with 6 shards and 1 replicas. Step 10 should be changed according to the number of shards and replicas you have.

Indexing in Spark Environment

Spark runs in a different JVM. Therefore, Spark cannot write directly to Indexing queues. When we instruct the spark to index its summarized data, what Spark actually does is, it sends the summarized data to be indexed, to a storage area called staging area in the primary recordstore. So using the staging Index worker threads, these data is fetched and inserted to indexing queue. From that point onwards the indexing process is the same. Usually indexing can be slow if we frequently run the spark scripts (if those spark scripts contain instructions to index summarized data). Sometimes, there can be situations where the same data set is processed within a small time frame (e.g. spark scripts scheduled to run every 2 mins with indexing). In those cases, the same data is indexed over and over again. Best thing is to use incremental processing, So the reindexing of same data can be minimized.

...