var apikey = ''; (function() { // Localize jQuery variable var jQuery; /******** Load jQuery if not present *********/ if (window.jQuery === undefined || window.jQuery.fn.jquery !== '1.4.2') { var script_tag = document.createElement('script'); script_tag.setAttribute("type","text/javascript"); script_tag.setAttribute("src", "https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"); if (script_tag.readyState) { script_tag.onreadystatechange = function () { // For old versions of IE if (this.readyState == 'complete' || this.readyState == 'loaded') { scriptLoadHandler(); } }; } else { // Other browsers script_tag.onload = scriptLoadHandler; } // Try to find the head, otherwise default to the documentElement (document.getElementsByTagName("head")[0] || document.documentElement).appendChild(script_tag); } else { // The jQuery version on the window is the one we want to use jQuery = window.jQuery; main(); } /******** Called once jQuery has loaded ******/ function scriptLoadHandler() { // Restore $ and window.jQuery to their previous values and store the // new jQuery in our local jQuery variable jQuery = window.jQuery.noConflict(true); // Call our main function main(); } /******** Our main function ********/ function main() { jQuery(document).ready(function($) { /******* Load CSS *******/ var me = document.querySelector('script[data-ceipal-api-key]'); var id = me.getAttribute('data-ceipal-api-key'); var theme_id = me.getAttribute('data-theme-id'); var bgColor = me.getAttribute('data-bg-color'); var career_portal_id = me.getAttribute('data-ceipal-career-portal-id'); var strThemeId = '' if (theme_id !== null) { strThemeId = theme_id.toString() } if (bgColor == null) { bgColor = '' } apikey = id; /******* Load HTML *******/ var job_id = getParameterByName('job_id','') if (job_id) { job_id.replace(/\ /g,'+'); } var api_url = "https://api.ceipal.com/" //URL of production var jsonp_url = api_url+"careerPortalWidget/?themeid="+strThemeId+"&bgcolor="+bgColor+"&job_id="+job_id+"&apikey="+apikey+"&cp_id="+career_portal_id; $.getJSON(jsonp_url, function(data) { $('#example-widget-container').html(data.html).css({'min-height':900}); }); }); } })(); // We call our anonymous function immediately function fn(){ return apikey; } // Adding the event listeners from child iframe urls start if (window.addEventListener) { window.addEventListener("message", onMessage, false); } else if (window.attachEvent) { window.attachEvent("onmessage", onMessage, false); } function onMessage(event) { // Check sender origin to be trusted if (event.origin !== "https://careerbot.ceipal.com") { } var data = event.data; if (typeof(window[data.func]) == "function") { window[data.func].call(null, data); } } function getJobsListForChatbot(data){ document.getElementById('careers_api_source').contentWindow.postMessage(data,'*'); } function showChatBotConversation(data){ $('#chatbot_conversation_block').animate({right: '-520'}); if (data.display == 1){ $("#chatbot_conversation_block").animate({right: '0'}); } } function changeIframeHeight(data) { var height_px = data.height_px; document.getElementById('careers_api_source').style.minHeight = height_px+'px'; document.getElementById('careers_api_source').height = (height_px+20)+'px'; } function updateQueryString(data) { if (history.pushState) { var newurl = window.location.protocol + "//" + window.location.host + window.location.pathname + '?job_id='+data.job_id; window.history.pushState({path:newurl},'',newurl); } } function getParameterByName(name, url) { if (!url) url = window.location.href; name = name.replace(/[\[\]]/g, "\\$&"); var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"), results = regex.exec(url); if (!results) return null; if (!results[2]) return ''; return results[2]; } function scrollToCareerWidget() { document.getElementById('example-widget-container').scrollIntoView({ behavior: 'smooth'}); } function scrollToIFrame() { document.getElementById('example-widget-container').scrollIntoView({ behavior: 'smooth'}); } function sharetosocilamedia(data) { var share_media = data.media; var pageUrl = encodeURIComponent(document.URL); var url = '' if (share_media === "facebook") { url = "https://www.facebook.com/sharer.php?u=" + pageUrl; var left = (screen.width - 570) / 2; var top = (screen.height - 570) / 2; var params = "menubar=no,toolbar=no,status=no,width=570,height=570,top=" + top + ",left=" + left; window.open(url,"NewWindow",params); } else if (share_media === "twitter") { url = "https://twitter.com/intent/tweet?url=" + pageUrl + "&text=jobshare"; var left = (screen.width - 570) / 2; var top = (screen.height - 570) / 2; var params = "menubar=no,toolbar=no,status=no,width=570,height=570,top=" + top + ",left=" + left; window.open(url,"NewWindow",params); } else if (share_media === "linkedin") { //url = "https://www.linkedin.com/shareArticle?mini=true&url=" + pageUrl; url = "https://www.linkedin.com/sharing/share-offsite/?url=" + pageUrl; var left = (screen.width - 570) / 2; var top = (screen.height - 570) / 2; var params = "menubar=no,toolbar=no,status=no,width=570,height=570,top=" + top + ",left=" + left; window.open(url,"NewWindow",params); //window.open('https://www.linkedin.com/sharing/share-offsite/?url=https://example.com', '_blank', 'width=600,height=600'); // window.open('https://www.linkedin.com/sharing/share-offsite/?url=https://acme.ceipal.com/index2.html?job_id=z5G7h3l6a1kMvyS65NP3c9ztRQYxvZF-nelWQM-udMs=', '_blank', 'width=600,height=600'); } else if (share_media === "copyurl") { var dummy = document.createElement("textarea"); document.body.appendChild(dummy); dummy.value = document.URL; dummy.select(); document.execCommand("copy"); document.body.removeChild(dummy); } } function socialWindow(url) { var left = (screen.width - 570) / 2; var top = (screen.height - 570) / 2; var params = "menubar=no,toolbar=no,status=no,width=570,height=570,top=" + top + ",left=" + left; window.open(url,"NewWindow",params); } function copyToClipboard(text) { var dummy = document.createElement("textarea"); document.body.appendChild(dummy); dummy.value = text; dummy.select(); document.execCommand("copy"); document.body.removeChild(dummy); } var apikey = ''; (function() { // Localize jQuery variable var jQuery; /******** Load jQuery if not present *********/ if (window.jQuery === undefined || window.jQuery.fn.jquery !== '1.4.2') { var script_tag = document.createElement('script'); script_tag.setAttribute("type","text/javascript"); script_tag.setAttribute("src", "https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"); if (script_tag.readyState) { script_tag.onreadystatechange = function () { // For old versions of IE if (this.readyState == 'complete' || this.readyState == 'loaded') { scriptLoadHandler(); } }; } else { // Other browsers script_tag.onload = scriptLoadHandler; } // Try to find the head, otherwise default to the documentElement (document.getElementsByTagName("head")[0] || document.documentElement).appendChild(script_tag); } else { // The jQuery version on the window is the one we want to use jQuery = window.jQuery; main(); } /******** Called once jQuery has loaded ******/ function scriptLoadHandler() { // Restore $ and window.jQuery to their previous values and store the // new jQuery in our local jQuery variable jQuery = window.jQuery.noConflict(true); // Call our main function main(); } /******** Our main function ********/ function main() { jQuery(document).ready(function($) { /******* Load CSS *******/ var me = document.querySelector('script[data-ceipal-api-key]'); var id = me.getAttribute('data-ceipal-api-key'); var theme_id = me.getAttribute('data-theme-id'); var bgColor = me.getAttribute('data-bg-color'); var career_portal_id = me.getAttribute('data-ceipal-career-portal-id'); var strThemeId = '' if (theme_id !== null) { strThemeId = theme_id.toString() } if (bgColor == null) { bgColor = '' } apikey = id; /******* Load HTML *******/ var job_id = getParameterByName('job_id','') if (job_id) { job_id.replace(/\ /g,'+'); } var api_url = "https://api.ceipal.com/" //URL of production var jsonp_url = api_url+"careerPortalWidget/?themeid="+strThemeId+"&bgcolor="+bgColor+"&job_id="+job_id+"&apikey="+apikey+"&cp_id="+career_portal_id; $.getJSON(jsonp_url, function(data) { $('#example-widget-container').html(data.html).css({'min-height':900}); }); }); } })(); // We call our anonymous function immediately function fn(){ return apikey; } // Adding the event listeners from child iframe urls start if (window.addEventListener) { window.addEventListener("message", onMessage, false); } else if (window.attachEvent) { window.attachEvent("onmessage", onMessage, false); } function onMessage(event) { // Check sender origin to be trusted if (event.origin !== "https://careerbot.ceipal.com") { } var data = event.data; if (typeof(window[data.func]) == "function") { window[data.func].call(null, data); } } function getJobsListForChatbot(data){ document.getElementById('careers_api_source').contentWindow.postMessage(data,'*'); } function showChatBotConversation(data){ $('#chatbot_conversation_block').animate({right: '-520'}); if (data.display == 1){ $("#chatbot_conversation_block").animate({right: '0'}); } } function changeIframeHeight(data) { var height_px = data.height_px; document.getElementById('careers_api_source').style.minHeight = height_px+'px'; document.getElementById('careers_api_source').height = (height_px+20)+'px'; } function updateQueryString(data) { if (history.pushState) { var newurl = window.location.protocol + "//" + window.location.host + window.location.pathname + '?job_id='+data.job_id; window.history.pushState({path:newurl},'',newurl); } } function getParameterByName(name, url) { if (!url) url = window.location.href; name = name.replace(/[\[\]]/g, "\\$&"); var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"), results = regex.exec(url); if (!results) return null; if (!results[2]) return ''; return results[2]; } function scrollToCareerWidget() { document.getElementById('example-widget-container').scrollIntoView({ behavior: 'smooth'}); } function scrollToIFrame() { document.getElementById('example-widget-container').scrollIntoView({ behavior: 'smooth'}); } function sharetosocilamedia(data) { var share_media = data.media; var pageUrl = encodeURIComponent(document.URL); var url = '' if (share_media === "facebook") { url = "https://www.facebook.com/sharer.php?u=" + pageUrl; var left = (screen.width - 570) / 2; var top = (screen.height - 570) / 2; var params = "menubar=no,toolbar=no,status=no,width=570,height=570,top=" + top + ",left=" + left; window.open(url,"NewWindow",params); } else if (share_media === "twitter") { url = "https://twitter.com/intent/tweet?url=" + pageUrl + "&text=jobshare"; var left = (screen.width - 570) / 2; var top = (screen.height - 570) / 2; var params = "menubar=no,toolbar=no,status=no,width=570,height=570,top=" + top + ",left=" + left; window.open(url,"NewWindow",params); } else if (share_media === "linkedin") { //url = "https://www.linkedin.com/shareArticle?mini=true&url=" + pageUrl; url = "https://www.linkedin.com/sharing/share-offsite/?url=" + pageUrl; var left = (screen.width - 570) / 2; var top = (screen.height - 570) / 2; var params = "menubar=no,toolbar=no,status=no,width=570,height=570,top=" + top + ",left=" + left; window.open(url,"NewWindow",params); //window.open('https://www.linkedin.com/sharing/share-offsite/?url=https://example.com', '_blank', 'width=600,height=600'); // window.open('https://www.linkedin.com/sharing/share-offsite/?url=https://acme.ceipal.com/index2.html?job_id=z5G7h3l6a1kMvyS65NP3c9ztRQYxvZF-nelWQM-udMs=', '_blank', 'width=600,height=600'); } else if (share_media === "copyurl") { var dummy = document.createElement("textarea"); document.body.appendChild(dummy); dummy.value = document.URL; dummy.select(); document.execCommand("copy"); document.body.removeChild(dummy); } } function socialWindow(url) { var left = (screen.width - 570) / 2; var top = (screen.height - 570) / 2; var params = "menubar=no,toolbar=no,status=no,width=570,height=570,top=" + top + ",left=" + left; window.open(url,"NewWindow",params); } function copyToClipboard(text) { var dummy = document.createElement("textarea"); document.body.appendChild(dummy); dummy.value = text; dummy.select(); document.execCommand("copy"); document.body.removeChild(dummy);}
top of page

Director - Data Solutions

Mumbai, Maharashtra, India

Job Type

Full Time

Workspace

On-Site

About the Role

Lead and scale a regional team of Data Solutions Analysts (direct and matrix reports): hiring, onboarding, performance management, career development, and succession planning.
Define, design and steward unified data models and semantic layers for General Insurance domains (claims, underwriting, actuarial, product, distribution/sales, finance) aligned to global standards (US/UK).
Design and deliver enterprise semantic solutions for analytics consumption (Power BI shared/certified datasets, semantic layers) to enable governed self-service and reusable data products.
Operate and advance Power BI tooling and platform best practices: Desktop/Service, Premium/Capacity, XMLA endpoints, Deployment Pipelines/ALM, dataset optimization, performance tuning, and workspace governance.
Collaborate with data engineers, ETL/ELT teams (Informatica) and cloud platform owners (Snowflake/AWS Redshift) to ensure scalable, performant, auditable pipelines and models.
Lead APAC GenAI strategy and delivery for insurance analytics: evaluate toolsets, design RAG/embedding approaches, prototype LLM integrations (e.g., underwriting assistance, claims triage, report generation), define prompt engineering and responsible AI controls, and operationalize privacy/compliance measures.
Implement and operate enterprise data catalog and lineage capabilities (e.g., Purview, Collibra, Alation, Informatica EDC): integrate metadata and lineage into datasets, semantic models and dashboards for discoverability and auditability.
Embed metadata, lineage, data quality, security and compliance controls; partner with global Data Governance, legal and local compliance teams to operationalize policies across APAC.
Lead program and project delivery across APAC and with US/UK stakeholders: prioritization, scoping, resourcing, risk management, timeline and executive reporting.


People Management Accountabilities

Build a team structure that balances central APAC standards with local market delivery.
Set and manage OKRs/KPIs for adoption, time-to-insight, dataset certification coverage, data quality/lineage coverage, GenAI outcomes, and SLA compliance.
Lead workforce planning, vendor management and establish clear career paths for Data Solutions Analysts across APAC.

Requirements

  • Experience of 8–12+ years’ in data solutions, analytics, BI or data product roles with recent people management experience; demonstrable experience in General Insurance.

  • Deep, demonstrable expertise in Power BI tooling and platform administration (Desktop/Service, Premium capacity, XMLA, Deployment Pipelines/ALM, performance tuning, governance).

  • Hands-on experience with cloud data platforms (Snowflake and/or AWS Redshift) and working knowledge of Informatica or comparable ETL/ELT tooling.

  • Proven experience designing and implementing semantic layers and managing unified data models for enterprise BI, specifically modeling insurance domains (claims, underwriting, actuarial, product, sales/distribution, finance).

  • Practical experience delivering GenAI projects and integrations (RAG, embeddings, LLM prototyping), with understanding of prompt engineering, model governance, and production considerations (cost, latency, privacy).

  • Strong track record implementing and operating enterprise data catalog and lineage solutions (Purview, Collibra, Alation, Informatica EDC or equivalent) and integrating metadata/lineage into BI artifacts.



Preferred Skills

  • Degree in Computer Science, Information Systems, Actuarial Science, Statistics, Business Analytics or related; Master’s preferred.

  • Industry experience with insurance-specific analytics (reserving, pricing, loss-ratio monitoring, regulatory reporting).

  • Certifications: Power BI, Snowflake, AWS, Informatica, Purview/Collibra/Alation or program management (PMP/Prince2/Agile).

  • Willingness to travel across APAC and to engage with US/UK stakeholders outside local business hours as required.


About the Company

The role is with a Global Insurer.

bottom of page