MLW LogoMost Loved Workplace® Certified Job

Master's Thesis Opportunity - Spring of 2027

MLW LogoMost Loved Workplace® Certified Job
92% of candidates apply because they are a Most Loved Workplace®
Malmö
Engineering

About the Role

At NEO4j, a Most Loved Workplace® certified employer in the Technology space, Help the world make sense of connected data through graph technology.

<div class="content-intro"><div><span style="font-size: 18pt;"><strong>About NEO4j:</strong></span></div>

<div>

<p>NEO4j is the graph intelligence platform that transforms data into knowledge to power the next generation of intelligent applications and AI systems. It includes enterprise-ready knowledge graphs for accurate, explainable, and governed AI; the most comprehensive, trusted, and easy-to-deploy graph capabilities across any environment and data source; and an unmatched ecosystem trusted by 84 of the Fortune 100 and supported by the world’s largest graph community. Intelligence that works. Results that matter.</p>

<p>Built to work everywhere and integrate with everything across every cloud for dynamic, personalized, and autonomous AI systems. We deliver quicker results, contextual knowledge, and solutions that impact customers and employees across the business.</p>

</div>

<div><span style="font-size: 18pt;"><strong>Our Vision: </strong></span></div>

<div>

<p><span style="font-weight: 400;">At NEO4j, we have always strived to help the world make sense of data.  </span></p>

<p><span style="font-weight: 400;">As business, society and knowledge become increasingly connected, our technology promotes innovation by helping organizations to find and understand data relationships. We created, drive and lead the graph database category, and we’re disrupting how organizations leverage their data to innovate and stay competitive.</span></p>

</div></div><p><span style="font-size: 18pt;"><strong>The Role:</strong></span></p>

<div class="p-rich_text_section" style="text-align: left;">Are you at the end of your studies and want to immerse yourself in graph technology? We are now looking for students who want to do their Master’s Thesis alongside us at NEO4j!<br>As part of NEO4j engineering in Malmö, you will work with a diverse team of talented colleagues worldwide. You will receive advice and continuous support from us - we are experts in graph technology and positioned to help you perform to the best of your ability.</div>

<div class="p-rich_text_section" style="text-align: left;"> </div>

<div class="p-rich_text_section" style="text-align: left;">

<div class="p-rich_text_section" style="text-align: left;"><strong data-stringify-type="bold">Past Thesis Topics:</strong></div>

<div class="p-rich_text_section" style="text-align: left;"><strong data-stringify-type="bold"> <br></strong><strong>Force Directed Drawing Algorithms and Parameter Optimisation:</strong><br>Through my thesis I have implemented and compared some different graph drawing algorithms in addition to some methods to speed up the slow parts of these algorithms. These algorithms were then used to test what to the best of my knowledge is a novel approach to select parameter values for graph drawing algorithms. For this, I use methods similar to those used in Machine Learning to select parameter values and measure the utility of any set of parameters by creating my own utility function. I created this function by looking at objective measures of drawing quality that are commonly known, such as the number of edge crossings, along with the time it took to draw a given graph. The resulting method for parameter optimisation could find significant increases in the speed of graph drawing for several of my implemented drawing algorithms without compromising drawing quality. Furthermore, the approach is not specific to any parameter set, and can with some modification be applied to any graph drawing algorithm dependent on some constants.<br><strong data-stringify-type="bold"><br></strong><strong>Modeling Profiling Data in a Graph Database for Performance Analysis:</strong><br>Benchmarking is an important part of the development process for any mission-critical application. By inspecting profiling data, developers can identify bottlenecks and performance regressions before they reach the customers. </div>

<div class="p-rich_text_section" style="text-align: left;">NEO4j runs an extensive benchmarking suite on its database, resulting in a huge collection of profiling data collected each week. These profiles are commonly visualized individually as flame graphs which are inspected manually. Finding patterns and differences among multiple profiles is difficult to do manually, due to the size and complexity of the data. We propose a framework for identifying bottlenecks and regressions by modeling the profiling data as call-stack trees in a graph database. We demonstrate the usefulness of the framework for cross-profile analysis such as time series analysis and aggregation-based methods. We conclude that there is much potential in this approach and our thesis can be used as a decision basis for organizations wanting to implement a similar framework.<br>Using a graph database to model profiling data has many advantages and is suitable for the tree-like structure of the data. It makes the data more accessible and facilitates flexible querying in which the user can ask questions about the data and perform non-trivial aggregation. It has already aided NEO4j in the process of pinpointing the cause of some performance issues. The main disadvantage is the complexity involved in importing large quantities of data.<br><br><strong>Navigating Failures in Distributed Systems: A Comparative Study of Failure Detection Algorithms:</strong><br>Failure detection algorithms are used to identify unhealthy nodes in distributed systems. The goal of this study was to improve NEO4j’s use of failure detection algorithms by exploring two paths: either optimising their existing Lighthouse algorithm or by implementing a new algorithm. Existing algorithms were surveyed and the SWIM algorithm was implemented. A baseline was established and evaluated against parameter-optimized versions of SWIM and Lighthouse in a simulated network. The results show that Baseline is scalable and reliable but slow, Lighthouse is fast but less accurate, and SWIM is moderately fast and the least accurate but generates the least network load. In conclusion, the chosen parameters of a failure detector are to a great extent more important than the algorithm itself. Furthermore, to successfully optimise parameters it is crucial to have a scalable simulator and precise system requirements to manage the trade-off between speed, accuracy, and network load.<br><br><strong>Cache replacement policies and their impact on graph database operations:</strong><br>In this master thesis project, the page caching strategy of the NEO4j database is researched and attempted to be improved. Focusing on the eviction protocol of the page cache, several different algorithms are evaluated in both experimental prototyping using Python, and in the NEO4j database kernel. Using the measurements of the prototypes and the results of the NEO4j benchmarks conclude that the current page replacement policy is hard to beat with a different strategy. However, modifying the current page replacement policy by using a global instead of thread-local data structure and tuning parameters increased the hit rate and throughput. Furthermore, the measurements on the different implementations showed that the hit rate can be increased at the cost of some overhead, but implementing a complicated algorithm quickly increases the overhead and might decrease the throughput enough to make the algorithm ineffective.<br><br><strong>Randomly generating execution plans for bug detection in NEO4j:</strong><br>In recent years, Graph Database Management Systems(GDBMS) has increased in popularity for many use cases. One of the most popular GDBMS is NEO4j, which uses Cypher as a query language. With the increasing use of GDBMS in many business-critical applications, the need to test NEO4j and its competitors has become critical. One common practice for identifying bugs in a database system is using randomly generated tests, known as fuzz testing. Previously, this has been done by randomly generating queries, and several tools are currently available for this purpose. When executing a Cypher query, the query goes through several processing steps to ensure a correct result returns quickly. One of the intermediate structures used in the query processing is the execution plan, which details how the runtime should solve the query. In this thesis, we propose a novel approach to fuzz testing GDBMS by randomly generating execution plans. Our tool utilizes differential testing between different NEO4j runtimes, which allows for identifying incorrect results returned from one or more of the runtimes. These types of bugs are known as logic bugs. We can also identify situations when the NEO4j runtimes throw unexpected exceptions. The testing suite identified 20 bugs within the NEO4j, of which 11 were logic bugs. This approach to fuzz testing has proven helpful in identifying errors within the NEO4j runtimes, which previously received insufficient coverage by fuzz testing using queries. Other database management systems that utilize execution plans can benefit from the approach proposed by this thesis. The main drawbacks of this new approach are that it is not easily portable between different GDBMS and requires access to the query processing source code.<strong data-stringify-type="bold"><br></strong><br><strong data-stringify-type="bold">We tackle challenges in:</strong></div>

<ul class="p-rich_text_list p-rich_text_list__bullet" data-stringify-type="unordered-list" data-indent="0" data-border="0">

<li data-stringify-indent="0" data-stringify-border="0">Concurrency and parallelism</li>

<li data-stringify-indent="0" data-stringify-border="0">Distributed systems and fault tolerance</li>

<li data-stringify-indent="0" data-stringify-border="0">Language design and type systems</li>

<li data-stringify-indent="0" data-stringify-border="0">Performance tuning and benchmarking</li>

<li data-stringify-indent="0" data-stringify-border="0">Cloud architecture and service design</li>

<li data-stringify-indent="0" data-stringify-border="0">Site Reliability Engineering and cloud automation</li>

<li data-stringify-indent="0" data-stringify-border="0">Continuous Integration and Continuous Delivery</li>

<li data-stringify-indent="0" data-stringify-border="0">Graph algorithms and machine learning</li>

</ul>

<div class="p-rich_text_section">

<div class="p-rich_text_section"><strong data-stringify-type="bold">Does this topic sound interesting? Please apply!</strong></div>

<div class="p-rich_text_section">If you are applying as a group, please apply separately and indicate who you are applying together with in your Cover Letter.</div>

</div>

</div>

<div class="p-rich_text_section" style="text-align: left;"> </div>

<div class="p-rich_text_section" style="text-align: left;"><strong>Project start</strong></div>

<div class="p-rich_text_section" style="text-align: left;">Jan/Feb 2027</div><div class="content-conclusion"><div><span style="font-size: 18pt;"><strong>Why Join NEO4j?</strong></span></div>

<div>

<p>NEO4j is, without question, the most popular graph intelligence platform in the world. We have customers in every industry globally, and our products are a proven product/market fit. Joining our team is an opportunity to shape the future of data and analytics. Below are just a few exciting facts about NEO4j. </p>

<ul>

<li>NEO4j is one of the fastest-scaling technology companies in this industry. It <a href="https://NEO4j.com/press-releases/NEO4j-revenue-milestone-2024/">recently surpassed $200M</a> in annual recurring revenue (ARR), doubling its ARR <a href="https://NEO4j.com/press-releases/2021-company-momentum/">over the past three years.</a> </li>

<li>Raised the biggest funding round in database history ($325M Series F). Backed by world-class investors like Eurazeo, GV (formerly Google Ventures), and Inovia Capital, NEO4j has raised over $600M in funding and is currently valued at over $2Bn. This puts NEO4j among the most well-funded database companies in history.</li>

<li>84% of the Fortune 100 and 58% of the Fortune 500 use NEO4j. Examples include <a href="https://NEO4j.com/case-studies/boston-scientific/">Boston Scientific</a>, <a href="https://NEO4j.com/case-studies/bt/">BT Group</a>, <a href="https://NEO4j.com/case-studies/caterpillar/">Caterpillar</a>, <a href="https://NEO4j.com/case-studies/cisco/">Cisco</a>, <a href="https://NEO4j.com/case-studies/comcast/">Comcast</a>, <a href="https://NEO4j.com/case-studies/department-for-education-uk/">Department for Education UK</a>, <a href="https://NEO4j.com/case-studies/ebay/">eBay</a>, <a href="https://NEO4j.com/case-studies/nbc-news/">NBC News</a>, <a href="https://NEO4j.com/case-studies/novo-nordisk/">Novo Nordisk</a>, <a href="https://NEO4j.com/case-studies/worldline/">Worldline</a>, and <a href="https://NEO4j.com/case-studies/">others</a>. </li>

<li>Co-founder and CEO Emil Eifrem has built an amazing culture that prides itself on relationships, inclusiveness, innovation, and customer success.</li>

<li>Countless <a href="https://NEO4j.com/awards/">industry awards</a>. Massive enterprises and individual developers/data scientists love NEO4j. A strong sense of community and ecosystem is built around the platform.</li>

<li>A recent Forrester Total Economic Impact™ Study cited NEO4j as delivering 417% ROI to customers. </li>

</ul>

<p><a href="https://www.bizjournals.com/bizwomen/news/profiles-strategies/2022/07/getting-the-job-how-gender-equity.html?page=all">Research</a> shows that members of underrepresented communities are less likely to apply for jobs when they don’t meet all the qualifications. <strong>If this is part of the reason you hesitate to apply, we’d encourage you to reconsider and give us the opportunity to review your application. </strong>At NEO4j, we are committed to building awareness and helping to improve these issues. </p>

<p>One of our central objectives is to provide an inclusive, diverse, and equitable workplace for everyone to develop their potential and have a positive, career-defining experience. We look forward to receiving your application.</p>

</div>

<div><span style="font-size: 18pt;"><strong>NEO4j Values:</strong></span></div>

<div>

<p><span style="font-weight: 400;">NEO4j is a Silicon Valley company with a Swedish soul. We foster collaboration and each of us is empowered to contribute and put our innovative stamp on projects. We hire candidates who reflect the following NEO4j core values:</span></p>

<p><span style="font-weight: 400;">(we)-[:VALUE]->(relationships)<br></span><span style="font-weight: 400;">(we)-[:FOCUS_ON]->(userSuccess)<br></span><span style="font-weight: 400;">(we)-[:THRIVE_IN]->(:Culture {type: [‘Open’, ‘Inclusive’]})<br></span><span style="font-weight: 400;">(we)-[:ASSUME]->(:Intent {direction:’Positive’})<br></span><span style="font-weight: 400;">(we)-[:WELCOME]->(:Discussions {nature: ‘IntellectuallyHonest’})<br></span><span style="font-weight: 400;">(we)-[:DELIVER_ON]->(ourCommitments) </span></p>

<p><span style="font-weight: 400;">NEO4j is committed to protecting and respecting your privacy. Please read the</span><a href="https://NEO4j.com/privacy-policy/recruitment-process/?ref=hr-"><span style="font-weight: 400;"> </span><span style="font-weight: 400;">privacy notice regarding NEO4j's recruitment process</span></a><span style="font-weight: 400;"> to understand how we will handle the personal data that you provide.</span><span style="font-weight: 400;"> </span></p>

<span style="font-weight: 400;">More information at</span><a href="http://www.NEO4j.com/"><span style="font-weight: 400;"> </span></a><span style="font-weight: 400;"><a href="https://www.NEO4j.com">www.NEO4j.com</a></span><span style="font-weight: 400;">.</span></div>

<div> </div>

<div><span style="font-weight: 400;">©2026 NEO4j, Inc., Neo Technology®, NEO4j®, Cypher®, NEO4j Bloom™, NEO4j Graph Data Science Library™, NEO4j® Aura™, and NEO4j® AuraDB™ are registered trademarks or a trademark of NEO4j, Inc. All other marks are owned by their respective companies.</span></div></div>

Want to learn more about what it's like to work at NEO4j? View our full profile.

MLW Logo

Why This Is a Most Loved Workplace® Certified Job

What It's Like to Work Here

Users User-Centric Problem Solving
Network Connected Collaboration
Lightbulb Creative Innovation Freedom
Target Purpose-Driven Work
Handshake Honest, Respectful Dialogue
Globe Global Community Belonging
Certified for: Most Loved Workplace Most Loved Workplaces® 2026

Frequently Asked Questions About Working at NEO4j

Common questions candidates ask about this role and NEO4j's workplace

Neo4j, the Graph Database & Analytics leader, helps organizations find hidden relationships and patterns across billions of data connections deeply, easily and quickly. Customers leverage the structure of their connected data to reveal new ways of solving their most pressing business problems, from fraud detection, customer 360, knowledge graphs, supply chain, personalization, IoT, network management, and more – even as their data grows. Neo4j’s full graph stack delivers powerful native graph storage, data science, advanced analytics, and visualization, with enterprise-grade security controls, scalable architecture and ACID compliance. Neo4j’s community of data leaders comprises a vibrant, open-source community of more than 250,000 developers, data scientists, and architects across hundreds of Fortune 500 companies, government agencies and NGOs. Visit neo4j.com

Please review the specific job listing or contact NEO4j's recruiting team for details on remote or hybrid work options for this role.

Salary information may vary by role and location. Please check the specific job listing or discuss compensation during the interview process.

NEO4j is an established organization in its industry. The company is a certified Most Loved Workplace®, highlighting a strong, positive culture and committed workforce.

Key benefit categories include: Health & Wellness, Financial & Retirement, Professional Development, Community & Culture, Inclusivity & Diversity. You can view more details on their CertCheck profile.

The day-to-day environment is guided by core values such as User-Centric Problem Solving and Connected Collaboration and Creative Innovation Freedom.

The company has committed to inclusive practices including: Relationships First Culture and Employee Growth and Development.

They have earned Most Loved Workplace® certifications including: Most Loved Workplace Most Loved Workplaces® 2026.

NEO4j currently has 45 open positions. They are hiring across departments like Cloud Operations, Professional Services Consulting, Sales. You can view all current openings at certcheck.mostlovedworkplace.com/companies/neo4j/jobs.

The interview process typically involves an initial recruiter screen followed by team interviews. Please contact NEO4j's recruiting team for specific details on this role's process.

Apply for Master's Thesis Opportunity - Spring of 2027

Submit your application directly to the NEO4j team. Let them know why you'd be a great addition to their loved place to work.

Most Loved Workplace® Logo
Powered by Most Loved Workplace®

The global standard for company culture certification and employer of choice visibility.

Learn more about Most Loved Workplace®