# Register a custom serializer for your Flink program If you use a custom type in your Flink program which cannot be serialized by the Flink type serializer, Flink falls back to using the generic Kryo serializer. You may register your own serializer or a serialization system like Google Protobuf or Apache Thrift with Kryo. To do that, simply register the type class and the serializer in the `ExecutionConfig` of your Flink program. ``` final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); // register the class of the serializer as serializer for a type env.getConfig().registerTypeWithKryoSerializer(MyCustomType.class, MyCustomSerializer.class); // register an instance as serializer for a type MySerializer mySerializer = new MySerializer(); env.getConfig().registerTypeWithKryoSerializer(MyCustomType.class, mySerializer); ``` Note that your custom serializer has to extend Kryo’s Serializer class. In the case of Google Protobuf or Apache Thrift, this has already been done for you: ``` final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); // register the Google Protobuf serializer with Kryo env.getConfig().registerTypeWithKryoSerializer(MyCustomType.class, ProtobufSerializer.class); // register the serializer included with Apache Thrift as the standard serializer // TBaseSerializer states it should be initialized as a default Kryo serializer env.getConfig().addDefaultKryoSerializer(MyCustomType.class, TBaseSerializer.class); ``` For the above example to work, you need to include the necessary dependencies in your Maven project file (pom.xml). In the dependency section, add the following for Apache Thrift: ``` com.twitter chill-thrift 0.5.2 org.apache.thrift libthrift 0.6.1 javax.servlet servlet-api org.apache.httpcomponents httpclient ``` For Google Protobuf you need the following Maven dependency: ``` com.twitter chill-protobuf 0.5.2 com.google.protobuf protobuf-java 2.5.0 ``` Please adjust the versions of both libraries as needed. ### Issue with using Kryo’s `JavaSerializer` If you register Kryo’s `JavaSerializer` for your custom type, you may encounter `ClassNotFoundException`s even though your custom type class is included in the submitted user code jar. This is due to a know issue with Kryo’s `JavaSerializer`, which may incorrectly use the wrong classloader. In this case, you should use `org.apache.flink.api.java.typeutils.runtime.kryo.JavaSerializer` instead to resolve the issue. This is a reimplemented `JavaSerializer` in Flink that makes sure the user code classloader is used. Please refer to [FLINK-6025](https://issues.apache.org/jira/browse/FLINK-6025) for more details.