January 4th, 2022

The Future of OData NxT (Neo)

Hassan Habib
Sr. Software Engineering Manager

Few months ago I announced a collaboration with the OData team to start building a new version of OData that can withstand the forever changing requirements in software design and architecture. I got together with Sam Xu and we decided to kick-off a spin-off version of OData.NET that I called OData NxT (Neo)

OData Neo is an attempt to reconceptualize the core capabilities of OData while maintaining the original syntax protocols published by Microsoft back in 2007. The new Implementation will fulfill the following priorities:

This is OData Neo. The next generation of OData Protocol implementation for the .NET ecosystem. This implementation will incorporate three new fundamental design capabilities to OData.NET. These capabilities are:

0. Protocol Agnosticism

The new implementation is aiming towards creating a communication protocol-agnostic library. Which means that OData may no longer be tied up to RESTful APIs communication and can be used broadly across any system-to-system integration.

For instance, if two systems decided to use gRPC or SOAP or any other protocol to communicate, these protocols will not be impediment in establishing that connection while leveraging the powerful capabilities of OData. here’s an illustration of this approach:

 

 

The APIs in the above example will simply receive an odata query and turn it into an expression and vice versa. It has absolutely no attachment to any particular protocol of communication which makes it more powerful to integrate with any system.

Protocol-Agnostic OData shall expand the reach of OData to systems that don’t neccearily use REST. But more importantly, this priority will allow OData to become an adapative technology that can withstand the challenge of time in a forever changing industry.

The concept of adaptibility will be driving most of our architecture and design decisions throughtout this project and all other complimantry components that will built to support this effort.

1. Modularity

Modular technology allows the community of engineering to develop and contribute to any platform to make it more useful to fit particular scenarios that may be beyond the priorities of the core engineering team.

Querying data can come in all different shapes and forms. And while the standard OData protocol offers plenty of options to query data in terms of shaping, selecting, ordering and so many other options, it’s still limited in terms of allowing the engineering community to drive larger impact through plug-n-play modules for querying.

OData Neo is aiming to become a marketplace for all things related to data querying over the wire. We want to allow anyone, anywhere to offer more querying capabilities so others can benefit from these capabilities at scale.

At it’s core design, OData Neo shall be completely, and easily be rewritable to allow any engineering team to optimize for performance. We will be avoiding the common mistake of creating un-replaceable, un-rewritable core components that becomes a pain down the road for any team who are trying to push for higher performance, optimizations or even a better implementation.

We have split OData Neo into three main components as follows:

 

 

Let’s talk about the components of OData Neo here in detail:

1.0 Substrate

The substrate or the Lakehouse is a new pattern I will be experimenting with to push decoupling of any system components beyond interfaces and dependency injections. Ideally components should be subscribed to one and only one dependency at all times and execute all their communications through that substrate.

The lakehouse pattern will be very similar to queues, except that it allows components to fire-n-observe instead of just fire-n-foreget. This way we allow any component to be plugged into the system even in runtime without impacting the existing flow. Here’s an example:

Assume that our API client is ODataClient which exposes a function Query(string odataQuery). During integration the client would look something like this:

public async ValueTask<IQueryable<T>> QueryAsync(string query) =>
    this.dataLikeService.SendObserve(new Message(query), Events.Query);

The substrate will handle communicating with listeners to the Query event and communicate with all the subscribers to that event. This pattern is very similar to the subscriber pattern except that the publisher is waiting on the other side for the listeners to respond.

This way, the API client can send events to any number of subscribers without having to know anything about these subscribers or their contracts. The same thing goes for the subscribers with the publishers. Software engineers now may develop components that plug into the substrate, listen to events in the system and act on it.

1.1 APIs

Exposure components like the exposed APIs from the core library will mainly focusing on two basic functionality:

  • String to Expression Capability
  • Expression to String Capability

Both are very important to allow engineers to fully control incoming OData queries or generate ones out of simple expressions in the system so they can push it further to other systems.

APIs shall be easily mockable for N-Tier system architecture engineers but also modular to allow for expansion in the future for further capabilities.

1.2 Services

Services are the core business logic of OData Neo. Services will contain all the routines and sub-routines needed to digest and map an OData query into expressions, and strongly typed collections or collection interfaces so they are easily consumable by API developers.

Services can be of three different types, Foundations that hold primitive operations. Processing that holds higher-order business logic and lastly Orchestrations that combine multiple entity types for processing with a unified contract.

1.3 Brokers

Brokers will abstract away native or external dependencies the OData Neo core functions may need so they are replaceable down the road with better dependencies without changing the business logic of the library.

Modularity as a second priority will allow OData Neo Marketplace to expand beyond it’s current capabilities, and we can’t wait to see how our community is going to form their own modules to make OData Neo suitable perfectly for their businesses.

2. Transcendence

Modern software architecture demands certain capabilities in terms of integration. We want to allow OData queries to pass through any number of microservices/lambdas to land on the data-owner service and successfully execute and retrieve a query.

Transcendence in it’s essence is the ability to allow a microservice to receive and pass an OData query to it’s dependencies. This priority is important in terms of adapting to modern design like microservices, serverless and any other patterns that may occur in the future.

But Transcendence also aims for aggregation and control. We want to allow software engineers to develop microservices that can receive one single OData query and execute that query across multiple services or data-owning services. I will call that Query-Fanning and let’s visualize it as follows:

While aggregation is possible today with the current version of OData. It is not as seamlessly as it can be. We aim to make Transcendence a plug-n-play capability. All you got to do as an engineer is to break an incoming expression into smaller expressions with the new OData.Neo library and then post and aggregate responses.

The new implementation of OData will be strictly following The Standard to ensure the software is at the highest quality possible with Test-Driven approach and ongoing pushes for code rubs and pure coding to ensure a systematic intentional engagement of our community in the development of the new technology and it shall also help with the maintainability of the system since it’s being built in the open.

I’m going to document every single step of the way with blogs, videos and pull requests to help newcomers and contributors understand where we were, and where we are today and where we are headed with this technology.

3. Roadmap

Now, let’s discuss the roadmap for OData Neo. This preliminary roadmap will set the initial tentative expectations for deliverables as follows:

There are few things that I need everyone to understand about this roadmap, which are as follows:

  1. Quality over quantity. If we need more time to make something right, covering more scenarios we will adjust as we go.
  2. The roadmap is only there to help us and our community of engineers understand what the next step may be. It is a subject to change and enhance as needed.
  3. This roadmap is very high-level. There will be a further breakdown in our sessions (weekly standup) to breakdown the timeline into more detailed deliverables.

And With the aforementioned priorities we believe that we can explore new realms of software integration where OData can have an even further reach than what it already has today from the smallest APIs and applications to the largest enterprise-size platforms that already serve millions of customers today.

Final Notes & References

Here’s some important information about this new initiative to modernize OData:

  1. OData Neo does not replace the existing efforts on the current implementation of OData, The OData team will continue to provide more features and new releases of OData while the Neo project effort is going in parallel.
  2. This is the official repository of OData.Neo – you will find there all documentation, references, blog posts, recordings and most importantly discussions.
  3. OData Neo is a community effort, we encourage all software design fans out there to join us in shaping the future of OData together. This is a great opportunity to witness the birth of a new technology, step by step and from scratch. My promise is to document every step of the way so you can learn as much as possible from our patterns but also from our mistakes.
  4. I use initiatives like these to bring the engineering community closer together to build something great. This will happen through pairing sessions like the ones you see here and through discussions as well.
  5. This effort will be mainly driven by myself and Sam Xu – please reach out if you have any questions or topics of discussion.
  6. We appreciate the community excitement for this new initiative, and we hope we can deliver something amazing by the end of this year.

 

Update: After discussion with Sam Xu and Michael Pizzo we decided to call the project OData Neo instead of NxT so it wouldn’t give the impression that it replaces the existing OData effort.

Category
OData

Author

Hassan Habib
Sr. Software Engineering Manager

I'm a software engineer at Microsoft with over 21 years of experience building mobile, web and enterprise applications. I mastered technology to make people's lives better, one line of code at a time.

6 comments

Discussion is closed. Login to edit/delete existing comments.

  • Juliano Goncalves

    I'm a bit concerned/skeptical about the seeming "upfront overengineering" described in this proposal. Being able to use multiple transports makes a lot of sense to me, as does extracting base expression conversion functionality into a simpler, more reusable component, but the whole "substrate"/"custom subscription approach" aspect rubs me the wrong way. Lots of custom patterns without mentioning exactly what these patterns are solving, what scenarios today are problematic that warrant such change, why standard dependency...

    Read more
    • Hassan HabibMicrosoft employee Author · Edited

      Thank you for your feedback. If I were to distill most of it here it comes down to one question really:
      Why the substrate?

      This question has two aspects. In reality, why further abstraction. And why a new pattern?
      It actually comes down a lot more than that. It’s more like, why innovation?
      Every architectural pattern out there goes through a wear and tear process. We try different things, different scenarios and then we decide there’s...

      Read more
      • Juliano Goncalves · Edited

        Thank you very much for the detailed response Hassan.

        In regards to the innovation aspect of the proposal, I actually don't think that's bad per-se at all. I agree with you, in that if nobody tries something new, then we'd all be stuck with old tech and old patterns forever. However, at the same time, I think most patterns "emerge" out of a problem, and are not created upfront. The description above and your reply indicate...

        Read more
        • Hassan HabibMicrosoft employee Author · Edited

          Thanks Juliano.
          It's true patterns do emerge as problem arises. We have learned from the past from current implementations at the enterprise level including OData that three priorities/problems needs to be achieved/solved. These are the protocol-agnostic state, modularity and Transcendence.
          These issues do exist today with some workaround solutions. And we are trying to streamline these issues and turn them into opportunities that can inspire and influence newer patterns in software design and architecture.
          You...

          Read more
  • David Bond

    Let me know if/how the Simple.OData.Client nuget team can help!

    • Hassan HabibMicrosoft employee Author

      Thank you, David. I will definitely reach out. Thank you for your support!