Sending data to SpatialOS
Use the Improbable.Worker.Connection
to send data such as component updates, logs, and metrics to SpatialOS.
Component updates
Sending component updates
When the worker has authority over a component on an entity, it can send
component updates for that component to SpatialOS.
Do this using the method Connection.SendComponentUpdate<C>
,
which takes an IComponentUpdate<C>
object. The generic type parameter should be a subclass of
IComponentMetaclass
defined in the schema-generated code.
A component update can modify the value of a property or trigger an event. You can modify multiple properties and trigger multiple events in the same component update.
Component updates sent by the worker will appear in the operation list returned by a subsequent call to
Connection.GetOpList
. This means thatOnComponentUpdate
callbacks will also be invoked for component updates triggered by the worker itself, but not immediately.There are a couple of (related) reasons that callbacks for sent component updates should not be invoked immediately:
- This can lead to extremely unintuitive control flow when components are recursively updated inside a callback.
- It violates the guarantee that callbacks are only invoked as a result of a call to the
Process
method on theDispatcher
.
Sending and receiving component events
Sending and receiving events works much in the same way as property updates. For a schema like the following:
package example;
type SwitchToggled {
int64 time = 1;
}
component Switch {
id = 1234;
bool is_enabled = 1;
event SwitchToggled toggled;
}
To trigger an event:
private static void TriggerEvent(Connection connection, Improbable.EntityId entityId)
{
var update = new Example.Switch.Update();
update.AddToggled(new Example.SwitchToggled(1));
connection.SendComponentUpdate(entityId, update);
}
If you are not authoritative on the component, your event will be silently ignored.
Receiving an event works just like receiving a component update, by registering a callback on the dispatcher:
dispatcher.OnComponentUpdate<Switch>(op =>
{
var update = op.Update.Get();
foreach (var toggleEvent in update.toggled)
{
System.Console.WriteLine("Switch has been toggled at {0}.", toggleEvent.time);
}
})
Receiving component updates
To be notified when a worker receives a component update on an entity in the worker’s local
view of the simulation, use the Dispatcher
method OnComponentUpdate
with the same IComponentMetaclass
generic parameter C
as for sending updates.
Note that the component updates:
- can be partial, i.e. only update some properties of the component
- do not necessarily have to contain data that is different from the worker’s current view of the component
- could have been sent by SpatialOS rather than a worker for synchronization purposes
Updating component interests
For each entity in its view, a worker receives updates for (“has interest in”):
- the set of components the worker has authority over
- the set of components it is explicitly interested in
A worker always has interest in the components of the entities it is authoritative on, in addition to any others specified in the bridge settings or using the method described below.
You can configure the set of explicitly interested components in the bridge settings. This is the default set of explicit interest for every entity.
At runtime, the worker can override this set on a per-entity, per-component basis, using the
Connection.SendComponentInterest
method.
When the set of interested components for an entity changes, the worker receives
OnAddComponent
and
OnRemoveComponent
callbacks to reflect this change.
For example, you might be interested in one specific switch, but not every switch in the world:
private static void SendComponentInterest(Connection connection, Improbable.EntityId entityId)
{
var interestOverrides = new System.Collections.Generic.Dictionary<uint, InterestOverride>
{
{ Switch.ComponentId, new InterestOverride { IsInterested = true } }
};
connection.SendComponentInterest(entityId, interestOverrides);
}
Component commands
Sending component commands
To send a command request, use the Connection
method SendCommandRequest<C>
.
The command is executed by the worker that currently has authority over the component containing the command
on the entity specified in the command request.
SendCommandRequest<C>
takes:
- an entity ID
- an optional timeout
- an
ICommandRequest<C>
object an optional
CommandParameters
objectThis contains a field called
AllowShortCircuiting
, which if set to true will try to “short-circuit” the command and avoid a round trip to SpatialOS in some cases. See documentation on commands for more information.The generic type parameter should be a subclass of
ICommandMetaclass
defined in the schema-generated code.
Before sending the command, register a callback to handle the response with the
Dispatcher
with OnCommandResponse<C>
.
You can match up the request ID returned by
SendCommandRequest
(of type
Improbable.Worker.RequestId<OutgoingCommandRequest>
)
with the one in the
CommandResponseOp
to identify the request that is being responded to.
Command failures
Commands can fail, so you should check the
StatusCode
field in the
CommandResponseOp
,
and retry the command as necessary.
The caller will always get a response callback, but it can be one of several failure cases, including:
ApplicationError
(rejected by the target worker or by SpatialOS)AuthorityLost
(target worker lost authority, or no worker had authority)NotFound
(target entity, or target component on the entity, didn’t exist)PermissionDenied
(sending worker didn’t have permission to send request)Timeout
InternalError
(most likely indicates a bug in SpatialOS, should be reported)
For more detail on these status codes, see
the documentation for the StatusCode
enum.
Receiving component commands
To handle commands issued by another worker, use the opposite flow:
- Register a callback with the
Dispatcher
withOnCommandRequest<C>
When the callback is executed:
To respond to the command, call the
Connection
methodSendCommandResponse<C>
. Supply the request ID (of typeImprobable.Worker.RequestId<IncomingCommandRequest>
) provided by theCommandRequestOp
and an appropriateImprobable.Worker.ICommandResponse<C>
response object.To fail the command, call
SendCommandFailure<C>
.
Entity queries
A worker can run remote entity queries against the world by using the
Connection
method SendEntityQueryRequest
.
This takes an
Improbable.Worker.Query.EntityQuery
object and an optional timeout.
Like other request methods,
SendEntityQueryRequest
returns an Improbable.Worker.RequestId
request ID, which can be used to match a request with its response.
The query object
The query object is made of:
An
Improbable.Worker.Query.IConstraint
, which determines which entities are matched by the query.Available constraints:
EntityIdConstraint
: Matches a specific entity ID.ComponentConstraint
: Matches entities with a particular component.SphereConstraint
: Matches entities contained in the given sphere.AndConstraint
: Matches entities that match all of the given subconstraints.OrConstraint
: Matches entities that match any of the given subconstraints.NotConstraint
: Matches entities that do not match the given subconstraint.
An
Improbable.Worker.Query.iResultType
, which determines what data is returned for matched entities.Available result types:
CountResultType
: Returns the number of entities that matched the query.SnapshotResultType
: Returns a snapshot of component data for entities that matched the query.To select all components, use
new SnapshotResultType()
.To select every component whose ID is contained in the given set, use
new SnapshotResultType(componentIdSet)
(thus, pass an empty set to get no components but entity IDs only).
The query response
The response is received via a callback registered with the
Dispatcher
using the
OnEntityQueryResponse
method.
The EntityQueryResponseOp
contains:
- an
int ResultCount
field (forCountResultType
requests) - a
Map<EntityId, Entity>
(forSnapshotResultType
) requests.
Success or failure of the request is indicated by the
StatusCode
field of the
response object, but in the failure case the result may still contain some data: the count or
snapshot map might still contain the data for some entities that matched the query, but won’t
necessarily contain all matching entities. This is because the worker might still be able to do
something useful with a partial result.
Sending and receiving metrics
You can optionally send metrics by calling
Connection.SendMetrics
.
You can view metrics by going to the
Inspector World view and clicking on a worker.
There are two typical use cases for sending metrics:
- Reporting your own custom metrics. Both time series and histogram metrics are supported.
Updating a worker’s load.
The load of a worker is a floating-point value, with 0 indicating an unloaded worker and values above 1 corresponding to an overloaded worker. The reported values direct SpatialOS’s load balancing strategy.
Example
The following example demonstrates both use cases:
// A queue of tasks the worker has to complete.
private static readonly System.Collections.Queue TaskQueue = new System.Collections.Queue();
private const double MaximumQueueSize = 200; // An arbitrary maximum value.
private static void SendMetrics(Connection connection)
{
var load = System.Convert.ToDouble(TaskQueue.Count) / MaximumQueueSize;
var metrics = new Metrics { Load = load };
metrics.GaugeMetrics.Add("MyCustomMetric", 1.0);
var histogram = new HistogramMetric();
histogram.RecordObservation(123);
metrics.HistogramMetrics.Add("MyCustomHistogram", histogram);
connection.SendMetrics(metrics);
}
Workers automatically send several built-in, internal gauge metrics at a period defined by the
BuiltInMetricsReportPeriodMillis
field of
ConnectionParameters
.
You can register a callback to receive these metrics inside a
MetricsOp
using
Dispatcher.OnMetrics
:
private static void RegisterMetricsCallback(Dispatcher dispatcher)
{
dispatcher.OnMetrics(op => {
var shortCircuitRate = op.Metrics.GaugeMetrics["connection_command_request_short_circuit_rate"];
// Do something with the metric, or store it...
System.Console.WriteLine("Command requests short-circuited per second: " + shortCircuitRate);
});
}
The full list of built-in gauge metrics is as follows. All rate metrics are per-second.
Metric name (string ) |
Metric value (double ) |
---|---|
connection_send_queue_size |
The current size of the send queue (the messages waiting to be sent to SpatialOS). |
connection_send_queue_fill_rate |
The rate at which messages are being added to the send queue. |
connection_receive_queue_size |
The current size of the send queue. |
connection_receive_queue_fill_rate |
The rate at which messages are being received from SpatialOS and added to the receive queue. |
connection_oplist_queue_size |
The current size of the op list. |
connection_oplist_queue_fill_rate |
The rate at which ops are being added to the internal OpList (the queue of processed messages that workers operate on). |
connection_log_message_send_rate |
The rate at which log messages are being sent. |
connection_component_update_send_rate |
The rate at which component updates are being sent. |
connection_command_request_send_rate |
The rate at which command requests are being sent. |
connection_command_response_send_rate |
The rate at which successful command responses are being sent. |
connection_command_failure_send_rate |
The rate at which command failure responses are being sent. |
connection_local_command_timeouts |
The total local commands that timed out when waiting for a response. |
connection_local_command_timeouts_rate |
The rate at which local commands time out when waiting for a response. |
connection_unexpected_command_response_receives |
The total unexpected command responses recieved. |
connection_unexpected_command_response_receives_rate |
The rate at which unexpected command responses are recieved. |
connection_reserve_entity_id_request_send_rate |
The rate at which requests to reserve an entity ID are being sent. |
connection_reserve_entity_ids_request_send_rate |
The rate at which requests to reserve multiple entity IDs are being sent. |
connection_create_entity_request_send_rate |
The rate at which entity creation requests are being sent. |
connection_delete_entity_request_send_rate |
The rate at which entity deletion requests are being sent. |
connection_entity_query_request_send_rate |
The rate at which entity query requests are being sent. |
connection_component_interest_send_rate |
The rate at which component interest updates are being sent. |
connection_authority_loss_imminent_acknowledgement_send_rate |
The rate at which imminent authority loss acknowledgements are being sent. |
connection_command_request_short_circuit_rate |
The rate at which command requests are being short-circuited. |
connection_command_response_short_circuit_rate |
The rate at which successful command responses are being short-circuited. |
connection_command_failure_short_circuit_rate |
The rate at which command failure responses are being sent. |
connection_flag_update_op_receive_rate |
The rate at which FlagUpdate Ops are being received. |
connection_critical_section_op_receive_rate |
The rate at which CriticalSection Ops are being received. |
connection_add_entity_op_receive_rate |
The rate at which AddEntity Ops are being received. |
connection_remove_entity_op_receive_rate |
The rate at which RemoveEntity Ops are being received. |
connection_reserve_entity_id_response_op_receive_rate |
The rate at which ReserveEntityIdResponse Ops are being received. |
connection_reserve_entity_ids_response_op_receive_rate |
The rate at which ReserveEntityIdsResponse Ops are being received. |
connection_create_entity_response_op_receive_rate |
The rate at which CreateEntityResponse Ops are being received. |
connection_delete_entity_response_op_receive_rate |
The rate at which DeleteEntityResponse Ops are being received. |
connection_entity_query_response_op_receive_rate |
The rate at which EntityQueryResponse Ops are being received. |
connection_add_component_op_receive_rate |
The rate at which AddComponent Ops are being received. |
connection_remove_component_op_receive_rate |
The rate at which RemoveComponent Ops are being received. |
connection_authority_change_op_receive_rate |
The rate at which AuthorityChange Ops are being received. |
connection_component_update_op_receive_rate |
The rate at which ComponentUpdate Ops are being received. |
connection_command_request_op_receive_rate |
The rate at which CommandRequest Ops are being received. |
connection_command_response_op_receive_rate |
The rate at which CommandResponse Ops are being received. |
connection_egress_bytes |
The number of bytes that have been sent. This refers to bytes encoded by the application layer - the actual number of bytes transmitted on the transport may be slightly higher. |
connection_egress_bytes_rate |
The rate at which data is being sent, in bytes per second. |
connection_ingress_bytes |
The number of bytes that have been received. This refers to bytes decoded by the application layer - the actual number of bytes received on the transport may be slightly higher. |
connection_ingress_bytes_rate |
The rate at which data is being received, in bytes per second. |
connection_delta_compression_egress_bandwidth_saved_bytes |
The number of network egress bytes saved through delta compressing component updates. |
connection_delta_compression_egress_bandwidth_saved_bytes_rate |
The rate at which network egress bandwidth is saved through delta compressing component updates, in bytes per second. |
connection_delta_compression_egress_total_diffs_sent |
The number of delta compressed component updates sent. |
connection_delta_compression_egress_total_diffs_sent_rate |
The rate at which delta compressed component updates are sent, in updates per second. |
connection_delta_compression_egress_diffs_abandoned |
The number of delta compressed component updates abandoned (due to taking too long to compute or being too large). |
connection_delta_compression_egress_diffs_abandoned_rate |
The rate at which delta compressed component updates are abandoned, in updates per second. |
connection_delta_compression_ingress_bandwidth_saved_bytes |
The number of network ingress bytes saved through delta compressing component updates. |
connection_delta_compression_ingress_bandwidth_saved_bytes_rate |
The rate at which network ingress bandwidth is saved through delta compressing component updates, in bytes per second. |
raknet_receive_buffer_size |
The current size of the RakNet receive buffer. |
raknet_send_buffer_size |
The current size of the RakNet rend buffer. |
raknet_send_buffer_size_bytes |
The number of bytes in the RakNet send buffer. |
raknet_resend_buffer_size |
The number of messages waiting in the RakNet resend buffer. |
raknet_resend_buffer_size_bytes |
The number of bytes in the RakNet resend buffer. |
raknet_packet_loss_last_second |
The packet loss over the last second. This number will range from 0.0 to 1.0. |
raknet_packet_loss_lifetime |
The packet loss average over the lifetime of the connection. This number will range from 0.0 to 1.0. |
raknet_last_ping_seconds |
The response time of the last ping emitted by the RakNet client. |