cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
513
Views
0
Helpful
1
Replies

Current Limitations in Context Service

ccosenti
Level 1
Level 1

Current limitations with SEARCH/LOOKUP:

  • Search/Lookup is not supported on Request Objects
  • Search/Lookup for Customer objects is only supported for PII field. Encrypted/Un-encrypted fields cannot be used for search.

Current limitations for ContextServiceClient.flush:

  • fields and fieldsets cannot be used with ContextServiceClient.flush. ContextServiceClient.flush can be used with Customer.class, POD.class, and Request.class.

Limitation when using ContextServiceClient.destroyAndDeleteConnector() :

  • ContextServiceClient.destroyAndDeleteConnector() may return an error if you try and destory the connection within 30 seconds or so of creating it. To prevent the error from occurring, sleep sufficiently long (so your application has a total runtime of 45 seconds or so) that the connector is recognized as "Up" by the cloud so that you can destroy it. Example code below:

// Sleep to give the management connector time to report that it is up,

// so that we may rip it down cleanly.

int  sleeptime= 30000;

System.out.println("\n\nSleeping " + sleeptime + " ms...\n\n");

try {

    //thread to sleep for the specified number of milliseconds

    Thread.sleep(sleeptime);

} catch (InterruptedException ie) {

    System.out.println(ie);

}

System.out.println("\n\nResume! \n\n");

mgmtConnector.destroy();

contextServiceClient.destroyAndDeleteConnector();

System.out.println("\n\n*** Finished ***\n");

Heartbeat Daemon throwing warning and stack traces

The HeartBeat Daemon now throws warnings and stack traces each time a heartbeat occurs. This is safe to ignore.

[main] WARN  c.c.t.c.i.f.daemon.HeartBeatDaemon - Exception cleaning up connector cs_context@xxxxxxxx-xxxxx-xxxxx-xxxxxxxx

com.cisco.thunderhead.errors.UnknownApiException: java.lang.Exception: {"message":"Access forbidden for non admin user...

1 Reply 1

ccosenti
Level 1
Level 1

New issue (also added to top post):

Heartbeat Daemon throwing warning and stack traces

The HeartBeat Daemon now throws warnings and stack traces each time a heartbeat occurs. This is safe to ignore.

[main] WARN  c.c.t.c.i.f.daemon.HeartBeatDaemon - Exception cleaning up connector cs_context@xxxxxxxx-xxxxx-xxxxx-xxxxxxxx

com.cisco.thunderhead.errors.UnknownApiException: java.lang.Exception: {"message":"Access forbidden for non admin user...