You can get the prebuilt UDF from maven central. If you use a maven based project simply add this dependency to your Apache Beam application.
<dependency>
<groupId>nl.basjes.parse.useragent</groupId>
<artifactId>yauaa-beam</artifactId>
<version>2.0</version>
</dependency>
Simply install the normal build tools for a Java project (i.e. maven and jdk) and then simply do:
mvn clean package
Assume you have a PCollection with your records. In most cases I see (clickstream data) these records (In this example this class is called "TestRecord") contain the useragent string in a field and the parsed results must be added to these fields.
Now you must do two things:
- Determine the names of the fields you need.
- Add an instance of the (abstract) UserAgentAnalysisDoFn function and implement the functions as shown in the example below. Use the Field annotation to get the setter for the requested fields.
Note that the name of the two setters is not important, the system looks at the annotation.
.apply("Extract Elements from Useragent",
ParDo.of(new UserAgentAnalysisDoFn<TestRecord>() {
@Override
public String getUserAgentString(TestRecord record) {
return record.useragent;
}
@SuppressWarnings("unused")
@YauaaField("DeviceClass")
public void setDeviceClass(TestRecord record, String value) {
record.deviceClass = value;
}
@SuppressWarnings("unused")
@YauaaField("AgentNameVersion")
public void setAgentNameVersion(TestRecord record, String value) {
record.agentNameVersion = value;
}
}));
Apache Beam requires a DoFn to never modify the provided instance and to always return a new instance that is then passed to the next processing step. To handle this in a generic way UserAgentAnalysisDoFn has a "clone" method that does this by means of doing a round trip through serialization. If you can do a more efficient way for your specific class then please override the clone method.
An anonymous inner class in Java is by default private.
If you define it as an anonymous inner class as shown above then the system will try to make this class to become public by means of the method .setAccessible(true). There are situations in which this will fail (amongst others the SecurityManager can block this). If you run into such a scenario then simply 'not' define it inline as an anonymous class and define it as a named (public) class instead.
So the earlier example will look something like this:
public class MyUserAgentAnalysisDoFn extends UserAgentAnalysisDoFn<TestRecord> {
@Override
public String getUserAgentString(TestRecord record) {
return record.useragent;
}
@SuppressWarnings("unused")
@YauaaField("DeviceClass")
public void setDeviceClass(TestRecord record, String value) {
record.deviceClass = value;
}
@SuppressWarnings("unused")
@YauaaField("AgentNameVersion")
public void setAgentNameVersion(TestRecord record, String value) {
record.agentNameVersion = value;
}
}
and then in the topology simply do this
.apply("Extract Elements from Useragent",
ParDo.of(new MyUserAgentAnalysisDoFn()));
Yet Another UserAgent Analyzer
Copyright (C) 2013-2017 Niels Basjes
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.