Coder Social home page Coder Social logo

Comments (6)

serejja avatar serejja commented on June 10, 2024

Hi, codegen should be able to work with union schemas, can you please attach an example that isn't working for you so I could take a look?

Thanks!

from go-avro.

syslot avatar syslot commented on June 10, 2024

Here is a schema for union schema, but I can't use go-avro to serialise it
[
{
"type": "int",
"name": "MssLog"
},
{
"type": "string",
"name": "AtsLog"
}
]

from go-avro.

serejja avatar serejja commented on June 10, 2024

Codegen is able to work ONLY with Record schemas so this example is not expected to produce a Go struct with codegen.

Depending on what Go struct you expect I'd suggest using one of following schemas:

{
    "type": "record",
    "namespace": "avro",
    "name": "SomeRecord",
    "fields": [
        {
            "name": "MssAtsLog",
            "type": [
                "int",
                "string"
            ]
        }
    ]
}

or

{
    "type": "record",
    "namespace": "avro",
    "name": "SomeRecord",
    "fields": [
        {
            "name": "MssLog",
            "type": "int"
        },
        {
            "name": "AtsLog",
            "type": "string"
        }
    ]
}

Closing this issue for now, if you have some more questions feel free to reopen it or open another one please.
Thanks!

from go-avro.

syslot avatar syslot commented on June 10, 2024

thanks for your answer, but it doesn't work for me

from go-avro.

serejja avatar serejja commented on June 10, 2024

Can you please explain what exactly behavior you expect so I could help you or guide the right path?

from go-avro.

syslot avatar syslot commented on June 10, 2024

In my case, I have got a schema working in process by Java for data mining. Now I decede to restruct our source by Golang. In order to reuse the data mining system, I must use the schema ,which is union type just like below.

[
    {
        "type": "int",
        "name": "MssLog"
    },
    {
        "type": "string",
        "name": "AtsLog"
    }
]

from go-avro.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.