[
https://issues.apache.org/jira/browse/QUARKS-141?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15237170#comment-15237170
]
ASF GitHub Bot commented on QUARKS-141:
---------------------------------------
Github user dlaboss commented on a diff in the pull request:
https://github.com/apache/incubator-quarks-website/pull/39#discussion_r59376345
--- Diff: site/recipes/recipe_different_processing_against_stream.md ---
@@ -10,27 +10,35 @@ In this instance, we can take the stream of mileage
sensor readings and apply mu
## Setting up the application
-We assume that the environment has been set up following the steps
outlined in the [Getting Started Guide](../docs/quarks-getting-started). Let's
begin by creating a `DirectProvider` and `Topology`. We choose a
`DevelopmentProvider` so that we can view the topology graph using the console
URL (refer to the [Application Console](../docs/console) page for a more
detailed explanation of this provider). The initial mileage value and the
number of miles in a typical delivery route have also been defined.
+We assume that the environment has been set up following the steps
outlined in the [Getting started guide](../docs/quarks-getting-started). Let's
begin by creating a `DirectProvider` and `Topology`. We choose a
`DevelopmentProvider` so that we can view the topology graph using the console
URL (refer to the [Application console](../docs/console) page for a more
detailed explanation of this provider). The gas mileage bounds, initial mileage
value, and the number of miles in a typical delivery route have also been
defined.
```java
import java.text.DecimalFormat;
- import java.util.Random;
import java.util.concurrent.TimeUnit;
import com.google.gson.JsonObject;
+ import quarks.analytics.sensors.Ranges;
import quarks.console.server.HttpServer;
import quarks.providers.development.DevelopmentProvider;
import quarks.providers.direct.DirectProvider;
+ import quarks.samples.utils.sensor.SimpleSimulatedSensor;
import quarks.topology.TStream;
import quarks.topology.Topology;
public class ApplyDifferentProcessingAgainstStream {
/**
- * Hypothetical values for the initial gas mileage and the
- * number of miles in a typical delivery route
+ * Gas mileage value bounds
--- End diff --
"gas mileage" would be fine. it's the naked "mileage" (e.g.
TStream<Double> mileage) that I found confusing.
> Update existing recipes to use SimpleSimulatedSensor and
> SimulatedTemperatureSensor
> -----------------------------------------------------------------------------------
>
> Key: QUARKS-141
> URL: https://issues.apache.org/jira/browse/QUARKS-141
> Project: Quarks
> Issue Type: Improvement
> Components: Documentation, Web Site
> Reporter: Queenie Ma
> Assignee: Queenie Ma
> Priority: Minor
>
> Recipes to update:
> # [Detecting a sensor value out of expected
> range|http://quarks.incubator.apache.org/recipes/recipe_value_out_of_range.html]
> # [Applying Different Processing Against a Single
> Stream|http://quarks.incubator.apache.org/recipes/recipe_different_processing_against_stream.html]
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)